The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Changes 03
META.yml 37
lib/MooseX/Traits/Pluggable.pm 1047
3 files changed (This is a version diff) 1357
@@ -1,5 +1,8 @@
 Revision history for MooseX-Traits-Pluggable
 
+0.09  2010-02-07 00:59:59
+    - update POD
+
 0.08  2009-08-27 01:08:50
    - Remove use of Moose::Autobox as it fails on some platforms
      (notably, Activestate have bad PPMs)
@@ -1,5 +1,5 @@
 ---
-abstract: 'an extension to MooseX::Traits'
+abstract: 'trait loading and resolution for Moose'
 author:
   - 'Rafael Kitover C<< <rkitover@cpan.org> >>'
 build_requires:
@@ -9,7 +9,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
-generated_by: 'Module::Install version 0.910'
+generated_by: 'Module::Install version 0.91'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -19,6 +19,10 @@ no_index:
   directory:
     - inc
     - t
+provides:
+  MooseX::Traits::Pluggable:
+    file: lib/MooseX/Traits/Pluggable.pm
+    version: 0.09
 requires:
   Class::MOP: 0.84
   List::MoreUtils: 0
@@ -29,4 +33,4 @@ requires:
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/rkitover/moosex-traits-pluggable.git
-version: 0.08
+version: 0.09
@@ -7,7 +7,7 @@ use List::MoreUtils 'uniq';
 use Carp;
 use Moose::Util qw/find_meta/;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'id:RKITOVER';
 
 # stolen from MX::Object::Pluggable
@@ -160,12 +160,15 @@ __END__
 
 =head1 NAME
 
-MooseX::Traits::Pluggable - an extension to MooseX::Traits
+MooseX::Traits::Pluggable - trait loading and resolution for Moose
 
 =head1 DESCRIPTION
 
 See L<MooseX::Traits> for usage information.
 
+Use C<new_with_traits> to construct an object with a list of traits and
+C<apply_traits> to apply traits to an instance.
+
 Adds support for class precedence search for traits and some extra attributes,
 described below.
 
@@ -238,21 +241,55 @@ List of the (unresolved) traits applied to the instance.
 
 List of traits applied to the instance resolved to full package names.
 
-=head1 AUTHOR
+=head1 SEE ALSO
 
-Rafael Kitover C<< <rkitover@cpan.org> >>
+L<MooseX::Traits>, L<MooseX::Object::Pluggable>
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-moosex-traits-pluggable at
+rt.cpan.org>, or through the web interface at
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MooseX-Traits-Pluggable>.  I
+will be notified, and then you'll automatically be notified of progress on your
+bug as I make changes.
+
+=head1 SUPPORT
+
+More information at:
+
+=over 4
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-Traits-Pluggable>
 
-Don't email these guys, they had nothing to do with this fork:
+=item * AnnoCPAN: Annotated CPAN documentation
 
-Jonathan Rockway C<< <jrockway@cpan.org> >>
+L<http://annocpan.org/dist/MooseX-Traits-Pluggable>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/MooseX-Traits-Pluggable>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/MooseX-Traits-Pluggable/>
+
+=back
+
+=head1 AUTHOR
+
+Rafael Kitover C<< <rkitover@cpan.org> >>
 
-Stevan Little C<< <stevan.little@iinteractive.com> >>
+=head1 CONTRIBUTORS
 
-=head1 COPYRIGHT AND LICENSE
+Tomas Doran, C<< <bobtfish@bobtfish.net> >>
 
-Copyright 2008 Infinity Interactive, Inc.
+=head1 COPYRIGHT & LICENSE
 
-L<http://www.iinteractive.com>
+Copyright (c) 2009 - 2010 by the aforementioned
+L<DBIx::Class::Schema::Loader/AUTHOR> and
+L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.